-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
style: article main content&buttons styling #399
Conversation
@@ -103,3 +104,7 @@ article .footer-comtainer { | |||
article .footer-comtainer > * { | |||
margin: var(--spacing-8, 8px); | |||
} | |||
|
|||
h1.teal { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just add the teal-500
class to the h1
@@ -45,6 +45,7 @@ article .tag:hover { | |||
|
|||
article .contents a { | |||
color: var(--colors-teal-500); | |||
font-weight: bolder; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No font properties should ever be specified in the CSS because we have type classes in newroot.css, always just apply one of those.
Can we only use font-weight: 400 or font-weight: 700?
@@ -97,6 +97,7 @@ | |||
border-radius: 5px; | |||
display: none; | |||
z-index: 1; | |||
font-size: 16px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CSS looks fine, but can we make tooltip its own component?
No description provided.